@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333;
  text-align: center;
}
.container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
}
h3.blog-title {
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}
h1.main-title {
  color: #0e1e52;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 15px;
}
h3.subtitle {
  color: #a0a0a0;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.6;
}
.content {
  background: #fdfdfd;
  padding: 30px;
  border-radius: 15px;
  max-width: 700px;
  margin: 20px auto;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
p {
  font-size: 16px;
  font-weight: 300;
  color: #262626;
  line-height: 1.8;
  margin-bottom: 20px;
}
.content p::before {
  font-weight: bold;
  color: #0e1e52;
}
.cta {
  margin-top: 40px;
}
.cta a {
  background: #0e1e52;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}
.cta a:hover {
  background: #08163d;
  transform: scale(1.05);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.price-table th,
.price-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}
.price-table th {
  background-color: #ffdd57;
  font-weight: bold;
}
.price-table td strong {
  color: #333;
}
